Skip to content

AnonymousObserver class

Defined in

Namespace: System.Reactive Assembly: System.Reactive.dll Full name: System.Reactive.AnonymousObserver<T> Modifiers: public sealed

Summary

Class to create an IObserver instance from delegate-based implementations of the On* methods.

Applies to

netstandard2.0

Class hierarchy
classDiagram
class AnonymousObserver~T~
class ObserverBase~T~
ObserverBase~T~ <|-- AnonymousObserver~T~

Inherits from: ObserverBase

Constructors

NameSummary
.ctorCreates an observer from the specified OnNext,...

Methods

NameSummary
OnNextCoreCalls the action implementing OnNext.
OnErrorCoreCalls the action implementing OnError.
OnCompletedCoreCalls the action implementing OnCompleted.
Inherited members